home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-07-15 | 1.0 KB | 49 lines | [TEXT/MPS ] |
- // UMouseDocument.h
- // Copyright © 1992 by Apple Computer, Inc. All rights reserved.
- // Kent Sandvik DTS
- // This file contains the TMouseDocument class, the basic TDocument
- // class used in the MouseInfo application.
- // Version Info (latest first):
- //
- // <1> khs 1.0 First final version
- // <2> khs 1.0.1 Fixed a memory leak in TMapApplication::GetSleepValue()
-
-
- #ifndef __MOUSEDOCUMENT__
- #define __MOUSEDOCUMENT__
-
- // INCLUDE FILES
-
- #ifndef __MOUSEINFO__
- #include "UMouseInfo.h"
- #endif
-
- #ifndef __MENUEDWINDOW__
- #include "UMenuedWindow.h"
- #endif
-
- #ifndef __MOUSETRACKBEHAVIOR__
- #include "UMouseTrackBehavior.h"
- #endif
-
-
- // CLASSES
- // TMouseDocument, our main document class which coordinates it all
- // It does not really do much decent work, though, but hey this is a sample
- class TMouseDocument : public TDocument
- {
- public:
- TMouseDocument();
- virtual pascal void IMouseDocument();
- virtual pascal void Free();
-
- virtual pascal void DoMakeViews(Boolean /*forPrinting*/);
-
- TView* fMainView;
- };
-
-
-
- #endif __MOUSEDOCUMENT__
-
-